From 2d14977023efc254ed0d3eafb7fbb0d605dd3c6f Mon Sep 17 00:00:00 2001 From: "emellor@leeni.uk.xensource.com" Date: Wed, 16 Aug 2006 16:06:32 +0100 Subject: [PATCH] Fix log rotation which was inadvertently broken by changeset 11129:939f75570a15. Signed-off-by: Ewan Mellor --- tools/python/xen/xend/XendLogging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xend/XendLogging.py b/tools/python/xen/xend/XendLogging.py index ffffdfb5f6..a3d6de86d1 100644 --- a/tools/python/xen/xend/XendLogging.py +++ b/tools/python/xen/xend/XendLogging.py @@ -57,7 +57,7 @@ class XendRotatingFileHandler(logging.handlers.RotatingFileHandler): self.setCloseOnExec() def doRollover(self): - logging.handlers.RotatingFileHandler.doRollover() + logging.handlers.RotatingFileHandler.doRollover(self) self.setCloseOnExec() # NB yes accessing 'self.stream' violates OO encapsulation somewhat, -- 2.30.2